home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / ntfs / device_io.h < prev    next >
C/C++ Source or Header  |  2005-10-18  |  2KB  |  72 lines

  1. /*
  2.  * device_io.h - Exports for default device io. Part of the Linux-NTFS project.
  3.  *
  4.  * Copyright (c) 2000-2004 Anton Altaparmakov
  5.  *
  6.  * This program/include file is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License as published
  8.  * by the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program/include file is distributed in the hope that it will be
  12.  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  13.  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program (in the main directory of the Linux-NTFS
  18.  * distribution in the file COPYING); if not, write to the Free Software
  19.  * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20.  */
  21.  
  22. #ifndef _NTFS_DEVICE_IO_H
  23. #define _NTFS_DEVICE_IO_H
  24.  
  25. #ifdef HAVE_CONFIG_H
  26. #include "config.h"
  27. #endif
  28.  
  29. #ifndef NO_NTFS_DEVICE_DEFAULT_IO_OPS
  30.  
  31. #ifndef __CYGWIN32__
  32.  
  33. /* Not on Cygwin; use standard Unix style low level device operations. */
  34. #define ntfs_device_default_io_ops ntfs_device_unix_io_ops
  35.  
  36. #else /* __CYGWIN32__ */
  37.  
  38. #ifndef HDIO_GETGEO
  39. #    define HDIO_GETGEO    0x10000301
  40. struct hd_geometry {
  41.     unsigned char heads;
  42.     unsigned char sectors;
  43.     unsigned short cylinders;
  44.     unsigned long start;
  45. };
  46. #endif
  47. #ifndef BLKGETSIZE
  48. #    define BLKGETSIZE    0x10001260
  49. #endif
  50. #ifndef BLKSSZGET
  51. #    define BLKSSZGET    0x10001268
  52. #endif
  53. #ifndef BLKGETSIZE64
  54. #    define BLKGETSIZE64    0x10001272
  55. #endif
  56.  
  57. /* On Cygwin; use Win32 low level device operations. */
  58. #define ntfs_device_default_io_ops ntfs_device_win32_io_ops
  59.  
  60. #endif /* __CYGWIN32__ */
  61.  
  62.  
  63. /* Forward declaration. */
  64. struct ntfs_device_operations;
  65.  
  66. extern struct ntfs_device_operations ntfs_device_default_io_ops;
  67.  
  68. #endif /* NO_NTFS_DEVICE_DEFAULT_IO_OPS */
  69.  
  70. #endif /* defined _NTFS_DEVICE_IO_H */
  71.  
  72.